home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc B) / Acorn User China CD-ROM (UK) (Disc B).bin / BARNET / ARMLINUX / MAIL / 9708 / text0046.txt < prev    next >
Encoding:
Text File  |  1997-11-30  |  2.9 KB  |  93 lines

  1.  
  2. Thanks!  That solved the first part of that problem (getting a vmlinux),
  3. and I also figured out how to get !Linux to automatically start (the
  4. LinConfig application did not work for me, and I had to put a Config file
  5. by hand into the !Boot/Choices/Linux directory.
  6.  
  7. I have one correction to your mail:
  8.  
  9. loadmap did not recognize the root device until I added the following
  10. statement to the boot.conf file:
  11.  
  12. config {
  13.      root = "/dev/hda3";
  14. };
  15.  
  16. (having the root specified in the kernel block wasn't enough).
  17.  
  18.  
  19. At any rate, I now have linux running on my machine.  Thanks again to
  20. everyone for all your help!
  21.  
  22.             -Debby
  23.  
  24.    Date:     Tue, 19 Aug 1997 10:33:47 +0100 (BST)
  25.    From: Ale Terlevich <A.I.Terlevich@durham.ac.uk>
  26.    Cc: linux-arm@vger.rutgers.edu
  27.    Mime-Version: 1.0
  28.    Content-Type: TEXT/PLAIN; charset=US-ASCII
  29.    X-Orcpt: rfc822;linux-arm@vger.rutgers.edu
  30.    Sender: owner-linux-arm@vger.rutgers.edu
  31.    Precedence: bulk
  32.  
  33.  
  34.  
  35.    On Mon, 18 Aug 1997, Deborah Wallach wrote:
  36.  
  37.    > I found my problem!  I added 64 MB to the riscpc (it only had 8 to start
  38.    > with), and now the ftp proceeds (more-or-less) cleanly (sometimes I get a
  39.    > window popped up asking for a retry, but never does it hang completely).
  40.    > Unfortunately, I've developed a new problem.  After the ftp finishes, I
  41.    > get asked a bunch more setup things, and proceed through them happily.
  42.    > However, just after I select an initial root password, the installer pops
  43.    > up a window that says "I couldn't find a kernel!".  In the upper right hand
  44.    > corner of the screen is a little note saying it's in the 'Install
  45.    > bootloader' part of the install.  The only option is to click 'ok' at this
  46.    > point, and playing with the 'Previous', 'Retry', and 'Menu' options of the
  47.    > ensuing 'Error Window' get me nowhere (it continues not to find the kernel,
  48.    > and eventually tries to reboot the machine).
  49.  
  50.      Ok, here's what I did at this point.
  51.  
  52.    go back to riscos
  53.  
  54.      Copy the kernel onto a DOS floppy
  55.  
  56.      boot the kernel (!linux -bootkernel whawtever-your-kernel's-called)
  57.    when it asks for extra args, type
  58.    root=/dev/hda3 (Assuming your root partition is in the same place as 
  59.    mine, i.e. first after RiscOS on your first IDE HD)
  60.  
  61.      This will boot linux off your HD!  You now have linux running
  62.  
  63.    Copy the kernel off the DOS floppy (man mtools) and rename it as /vmlinux
  64.    (You need to be root to do this)
  65.  
  66.    To install the bootloader (The bit that fails in the install)
  67.    make a file called /etc/boot.conf with contents such as 
  68.  
  69.    # Linux 2.0.30 block with no ramdisk.
  70.    kernel {
  71.        name = "Linux 2.0.30";
  72.        path = "/vmlinux";
  73.        root = "/dev/hda3";
  74.        ramdisk = 0;
  75.        flags = readonly;
  76.    };
  77.  
  78.     You may need to change this a bit to reflect your disk setup
  79.  
  80.    Then type
  81.  
  82.    loadmap -v
  83.  
  84.     You can now reboot (CTRL_ALT_DEL) and try the !linux app with the 
  85.    *ADFS::0 kernel (or whatever the syntax is)
  86.  
  87.  
  88.      Hope this helps!
  89.  
  90.    Ale.
  91.  
  92.  
  93.